Dashboard Temp Share Shortlinks Frames API

HTMLify

app.js
Views: 19 | Author: huxn-webdev
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
const allLables = document.querySelectorAll(".form-control label");

allLables.forEach((label) => {
  label.innerHTML = label.innerHTML
    .split("")
    .map(
      (letter, index) =>
        `<span style="transition-delay:${index * 50}ms">${letter}</span>`
    )
    .join("");
});